home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20010306-20010921 / 000176_fdc@watsun.cc.columbia.edu_Tue May 22 16:41:40 EDT 2001.msg < prev    next >
Text File  |  2020-01-01  |  2KB  |  55 lines

  1. Article: 12476 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!watsun.cc.columbia.edu!fdc
  3. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: zmodem problem
  6. Date: 22 May 2001 20:41:25 GMT
  7. Organization: Columbia University
  8. Lines: 38
  9. Message-ID: <9eeitl$flc$1@newsmaster.cc.columbia.edu>
  10. References: <vOyO6.2574$gA.1009512@monger.newsread.com>
  11. NNTP-Posting-Host: watsun.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 990564085 16044 128.59.39.2 (22 May 2001 20:41:25 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 22 May 2001 20:41:25 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:12476
  16.  
  17. In article <vOyO6.2574$gA.1009512@monger.newsread.com>,
  18. Glenn Sherman <gsherman@remove_this.m20.net> wrote:
  19. : I know this is a zmodem problem, but I thought someone might have dealt with
  20. : this already.
  21. : I have a kermit script that dials up to send a file.
  22. : The server only receives zmodem transfers.
  23. : ...
  24. : set protocol zmodem {} {} {sz %s} {sz -ay %s} rz {rz -a}
  25. : send file1.txt
  26. : exit 0
  27. :
  28. : This is what I get when sending the file...
  29. : Begin Xfer file1.txtRetry 0: Awaiting pathname nak for file1.txt
  30. :       0 ZMODEM     A serial connection might still be active on /dev/ser2.
  31. : OK to exit? ok
  32. : I know what the active serial connection warning is...
  33. :
  34. In case others don't, it's because the SEND command completed, and the
  35. next command is EXIT.  Normally you'd want to put IF FAIL after the SEND
  36. command so you could take some kind of error recovery or notification
  37. action.
  38.  
  39. : but Is the pathname nak local  or is that from the remote ?
  40. :
  41. I believe it's local.  Zmodem is sending a file, and I think the Zmodem
  42. protocol wants the receiver to send a NAK as a means of telling the sender
  43. it's OK to send the filename.  But it's not getting it.
  44.  
  45. C-Kermit knows nothing about any of this -- it simply runs your sz program
  46. as an external protocol, with its standard i/o redirected to the
  47. communications connection.  The most likely explanation is your version of
  48. Zmodem does not use standard i/o for file transfer.  In that case, you'll 
  49. have to find another version that does.
  50.  
  51. - Frank
  52.